home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / sox / aiff.c < prev    next >
C/C++ Source or Header  |  1994-08-01  |  12KB  |  412 lines

  1. /*
  2.  * September 25, 1991
  3.  * Copyright 1991 Guido van Rossum And Sundry Contributors
  4.  * This source code is freely redistributable and may be used for
  5.  * any purpose.  This copyright notice must be maintained. 
  6.  * Guido van Rossum And Sundry Contributors are not responsible for 
  7.  * the consequences of using this software.
  8.  */
  9.  
  10. /*
  11.  * Sound Tools SGI/Amiga AIFF format.
  12.  * Used by SGI on 4D/35 and Indigo.
  13.  * This is a subformat of the EA-IFF-85 format.
  14.  * This is related to the IFF format used by the Amiga.
  15.  * But, apparently, not the same.
  16.  *
  17.  * Jan 93: new version from Guido Van Rossum that 
  18.  * correctly skips unwanted sections.
  19.  */
  20.  
  21. #include <math.h>
  22. #include "st.h"
  23.  
  24. /* Private data used by writer */
  25. struct aiffpriv {
  26.     unsigned long nsamples;
  27. };
  28.  
  29. double read_ieee_extended();
  30.  
  31. aiffstartread(ft) 
  32. ft_t ft;
  33. {
  34.     char buf[4];
  35.     unsigned long totalsize;
  36.     unsigned long chunksize;
  37.     int channels;
  38.     unsigned long frames;
  39.     int bits;
  40.     double rate;
  41.     unsigned long offset;
  42.     unsigned long blocksize;
  43.     int littlendian = 0;
  44.     char *endptr;
  45.  
  46.     /* FORM chunk */
  47.     if (fread(buf, 1, 4, ft->fp) != 4 || strncmp(buf, "FORM", 4) != 0)
  48.         fail("AIFF header does not begin with magic word 'FORM'");
  49.     totalsize = rblong(ft);
  50.     if (fread(buf, 1, 4, ft->fp) != 4 || strncmp(buf, "AIFF", 4) != 0)
  51.         fail("AIFF 'FORM' chunk does not specify 'AIFF' as type");
  52.  
  53.     /* Skip everything but the COMM chunk and the SSND chunk */
  54.     /* The SSND chunk must be the last in the file */
  55.     while (1) {
  56.         if (fread(buf, 1, 4, ft->fp) != 4)
  57.             fail("Missing SSND chunk in AIFF file");
  58.  
  59.         if (strncmp(buf, "COMM", 4) == 0) {
  60.             /* COMM chunk */
  61.             chunksize = rblong(ft);
  62.             if (chunksize != 18)
  63.                 fail("AIFF COMM chunk has bad size");
  64.             channels = rbshort(ft);
  65.             frames = rblong(ft);
  66.             bits = rbshort(ft);
  67.             rate = read_ieee_extended(ft);
  68.         }
  69.         else if (strncmp(buf, "SSND", 4) == 0) {
  70.             /* SSND chunk */
  71.             chunksize = rblong(ft);
  72.             offset = rblong(ft);
  73.             blocksize = rblong(ft);
  74.             break;
  75.         }
  76.         else {
  77.             chunksize = rblong(ft);
  78.             /* Skip the chunk using getc() so we may read
  79.                from a pipe */
  80.             while ((long) (--chunksize) >= 0) {
  81.                 if (getc(ft->fp) == EOF)
  82.                     fail("unexpected EOF in AIFF chunk");
  83.             }
  84.         }
  85.     }
  86.  
  87.     /* SSND chunk just read */
  88.     if (blocksize != 0)
  89.         fail("AIFF header specifies nonzero blocksize?!?!");
  90.     while ((long) (--offset) >= 0) {
  91.         if (getc(ft->fp) == EOF)
  92.             fail("unexpected EOF while skipping AIFF offset");
  93.     }
  94.  
  95.     ft->info.channels = channels;
  96.     ft->info.rate = rate;
  97.     ft->info.style = SIGN2;
  98.     switch (bits) {
  99.     case 8:
  100.         ft->info.size = BYTE;
  101.         break;
  102.     case 16:
  103.         ft->info.size = WORD;
  104.         break;
  105.     default:
  106.         fail("unsupported sample size in AIFF header");
  107.         /*NOTREACHED*/
  108.     }
  109.     endptr = (char *) &littlendian;
  110.     *endptr = 1;
  111.     if (littlendian == 1)
  112.         ft->swap = 1;
  113. }
  114.  
  115. /* When writing, the header is supposed to contain the number of
  116.    samples and data bytes written.
  117.    Since we don't know how many samples there are until we're done,
  118.    we first write the header with an very large number,
  119.    and at the end we rewind the file and write the header again
  120.    with the right number.  This only works if the file is seekable;
  121.    if it is not, the very large size remains in the header.
  122.    Strictly spoken this is not legal, but the playaiff utility
  123.    will still be able to play the resulting file. */
  124.  
  125. aiffstartwrite(ft)
  126. ft_t ft;
  127. {
  128.     struct aiffpriv *p = (struct aiffpriv *) ft->priv;
  129.     int littlendian = 0;
  130.     char *endptr;
  131.  
  132.     p->nsamples = 0;
  133.     if (ft->info.style == ULAW && ft->info.size == BYTE) {
  134.         report("expanding 8-bit u-law to 16 bits");
  135.         ft->info.size = WORD;
  136.     }
  137.     ft->info.style = SIGN2; /* We have a fixed style */
  138.     /* Compute the "very large number" so that a maximum number
  139.        of samples can be transmitted through a pipe without the
  140.        risk of causing overflow when calculating the number of bytes.
  141.        At 48 kHz, 16 bits stereo, this gives ~3 hours of music.
  142.        Sorry, the AIFF format does not provide for an "infinite"
  143.        number of samples. */
  144.     aiffwriteheader(ft, 0x7f000000 / (ft->info.size*ft->info.channels));
  145.  
  146.     endptr = (char *) &littlendian;
  147.     *endptr = 1;
  148.     if (littlendian == 1)
  149.         ft->swap = 1;
  150. }
  151.  
  152. aiffwrite(ft, buf, len)
  153. ft_t ft;
  154. long *buf, len;
  155. {
  156.     struct aiffpriv *p = (struct aiffpriv *) ft->priv;
  157.     p->nsamples += len;
  158.     rawwrite(ft, buf, len);
  159. }
  160.  
  161. void
  162. aiffstopwrite(ft)
  163. ft_t ft;
  164. {
  165.     struct aiffpriv *p = (struct aiffpriv *) ft->priv;
  166.     if (!ft->seekable)
  167.         return;
  168.     if (fseek(ft->fp, 0L, 0) != 0)
  169.         fail("can't rewind output file to rewrite AIFF header");
  170.     aiffwriteheader(ft, p->nsamples / ft->info.channels);
  171. }
  172.  
  173. aiffwriteheader(ft, nframes)
  174. ft_t ft;
  175. long nframes;
  176. {
  177.     int hsize =
  178.         8 /*COMM hdr*/ + 18 /*COMM chunk*/ +
  179.         8 /*SSND hdr*/ + 12 /*SSND chunk*/;
  180.     int bits;
  181.  
  182.     if (ft->info.style == SIGN2 && ft->info.size == BYTE)
  183.         bits = 8;
  184.     else if (ft->info.style == SIGN2 && ft->info.size == WORD)
  185.         bits = 16;
  186.     else
  187.         fail("unsupported output style/size for AIFF header");
  188.  
  189.     fputs("FORM", ft->fp); /* IFF header */
  190.     wblong(ft, hsize + nframes * ft->info.size * ft->info.channels); /* file size */
  191.     fputs("AIFF", ft->fp); /* File type */
  192.  
  193.     /* COMM chunk -- describes encoding (and #frames) */
  194.     fputs("COMM", ft->fp);
  195.     wblong(ft, (long) 18); /* COMM chunk size */
  196.     wbshort(ft, ft->info.channels); /* nchannels */
  197.     wblong(ft, nframes); /* number of frames */
  198.     wbshort(ft, bits); /* sample width, in bits */
  199.     write_ieee_extended(ft, (double)ft->info.rate);
  200.  
  201.     /* SSND chunk -- describes data */
  202.     fputs("SSND", ft->fp);
  203.     wblong(ft, 8 + nframes * ft->info.channels * ft->info.size); /* chunk size */
  204.     wblong(ft, (long) 0); /* offset */
  205.     wblong(ft, (long) 0); /* block size */
  206. }
  207.  
  208. double ConvertFromIeeeExtended();
  209.  
  210. double read_ieee_extended(ft)
  211. ft_t ft;
  212. {
  213.     char buf[10];
  214.     if (fread(buf, 1, 10, ft->fp) != 10)
  215.         fail("EOF while reading IEEE extended number");
  216.     return ConvertFromIeeeExtended(buf);
  217. }
  218.  
  219. write_ieee_extended(ft, x)
  220. ft_t ft;
  221. double x;
  222. {
  223.     char buf[10];
  224.     ConvertToIeeeExtended(x, buf);
  225.     /*
  226.     report("converted %g to %o %o %o %o %o %o %o %o %o %o",
  227.         x,
  228.         buf[0], buf[1], buf[2], buf[3], buf[4],
  229.         buf[5], buf[6], buf[7], buf[8], buf[9]);
  230.     */
  231.     (void) fwrite(buf, 1, 10, ft->fp);
  232. }
  233.  
  234.  
  235. /*
  236.  * C O N V E R T   T O   I E E E   E X T E N D E D
  237.  */
  238.  
  239. /* Copyright (C) 1988-1991 Apple Computer, Inc.
  240.  * All rights reserved.
  241.  *
  242.  * Machine-independent I/O routines for IEEE floating-point numbers.
  243.  *
  244.  * NaN's and infinities are converted to HUGE_VAL or HUGE, which
  245.  * happens to be infinity on IEEE machines.  Unfortunately, it is
  246.  * impossible to preserve NaN's in a machine-independent way.
  247.  * Infinities are, however, preserved on IEEE machines.
  248.  *
  249.  * These routines have been tested on the following machines:
  250.  *    Apple Macintosh, MPW 3.1 C compiler
  251.  *    Apple Macintosh, THINK C compiler
  252.  *    Silicon Graphics IRIS, MIPS compiler
  253.  *    Cray X/MP and Y/MP
  254.  *    Digital Equipment VAX
  255.  *
  256.  *
  257.  * Implemented by Malcolm Slaney and Ken Turkowski.
  258.  *
  259.  * Malcolm Slaney contributions during 1988-1990 include big- and little-
  260.  * endian file I/O, conversion to and from Motorola's extended 80-bit
  261.  * floating-point format, and conversions to and from IEEE single-
  262.  * precision floating-point format.
  263.  *
  264.  * In 1991, Ken Turkowski implemented the conversions to and from
  265.  * IEEE double-precision format, added more precision to the extended
  266.  * conversions, and accommodated conversions involving +/- infinity,
  267.  * NaN's, and denormalized numbers.
  268.  */
  269.  
  270. #ifndef HUGE_VAL
  271. # define HUGE_VAL HUGE
  272. #endif /*HUGE_VAL*/
  273.  
  274. # define FloatToUnsigned(f)      ((unsigned long)(((long)(f - 2147483648.0)) + 2147483647L) + 1)
  275.  
  276. ConvertToIeeeExtended(num, bytes)
  277. double num;
  278. char *bytes;
  279. {
  280.     int    sign;
  281.     int expon;
  282.     double fMant, fsMant;
  283.     unsigned long hiMant, loMant;
  284.  
  285.     if (num < 0) {
  286.         sign = 0x8000;
  287.         num *= -1;
  288.     } else {
  289.         sign = 0;
  290.     }
  291.  
  292.     if (num == 0) {
  293.         expon = 0; hiMant = 0; loMant = 0;
  294.     }
  295.     else {
  296.         fMant = frexp(num, &expon);
  297.         if ((expon > 16384) || !(fMant < 1)) {    /* Infinity or NaN */
  298.             expon = sign|0x7FFF; hiMant = 0; loMant = 0; /* infinity */
  299.         }
  300.         else {    /* Finite */
  301.             expon += 16382;
  302.             if (expon < 0) {    /* denormalized */
  303.                 fMant = ldexp(fMant, expon);
  304.                 expon = 0;
  305.             }
  306.             expon |= sign;
  307.             fMant = ldexp(fMant, 32);          
  308.             fsMant = floor(fMant); 
  309.             hiMant = FloatToUnsigned(fsMant);
  310.             fMant = ldexp(fMant - fsMant, 32); 
  311.             fsMant = floor(fMant); 
  312.             loMant = FloatToUnsigned(fsMant);
  313.         }
  314.     }
  315.     
  316.     bytes[0] = expon >> 8;
  317.     bytes[1] = expon;
  318.     bytes[2] = hiMant >> 24;
  319.     bytes[3] = hiMant >> 16;
  320.     bytes[4] = hiMant >> 8;
  321.     bytes[5] = hiMant;
  322.     bytes[6] = loMant >> 24;
  323.     bytes[7] = loMant >> 16;
  324.     bytes[8] = loMant >> 8;
  325.     bytes[9] = loMant;
  326. }
  327.  
  328.  
  329. /*
  330.  * C O N V E R T   F R O M   I E E E   E X T E N D E D  
  331.  */
  332.  
  333. /* 
  334.  * Copyright (C) 1988-1991 Apple Computer, Inc.
  335.  * All rights reserved.
  336.  *
  337.  * Machine-independent I/O routines for IEEE floating-point numbers.
  338.  *
  339.  * NaN's and infinities are converted to HUGE_VAL or HUGE, which
  340.  * happens to be infinity on IEEE machines.  Unfortunately, it is
  341.  * impossible to preserve NaN's in a machine-independent way.
  342.  * Infinities are, however, preserved on IEEE machines.
  343.  *
  344.  * These routines have been tested on the following machines:
  345.  *    Apple Macintosh, MPW 3.1 C compiler
  346.  *    Apple Macintosh, THINK C compiler
  347.  *    Silicon Graphics IRIS, MIPS compiler
  348.  *    Cray X/MP and Y/MP
  349.  *    Digital Equipment VAX
  350.  *
  351.  *
  352.  * Implemented by Malcolm Slaney and Ken Turkowski.
  353.  *
  354.  * Malcolm Slaney contributions during 1988-1990 include big- and little-
  355.  * endian file I/O, conversion to and from Motorola's extended 80-bit
  356.  * floating-point format, and conversions to and from IEEE single-
  357.  * precision floating-point format.
  358.  *
  359.  * In 1991, Ken Turkowski implemented the conversions to and from
  360.  * IEEE double-precision format, added more precision to the extended
  361.  * conversions, and accommodated conversions involving +/- infinity,
  362.  * NaN's, and denormalized numbers.
  363.  */
  364.  
  365. #ifndef HUGE_VAL
  366. # define HUGE_VAL HUGE
  367. #endif /*HUGE_VAL*/
  368.  
  369. # define UnsignedToFloat(u)         (((double)((long)(u - 2147483647L - 1))) + 2147483648.0)
  370.  
  371. /****************************************************************
  372.  * Extended precision IEEE floating-point conversion routine.
  373.  ****************************************************************/
  374.  
  375. double ConvertFromIeeeExtended(bytes)
  376. unsigned char *bytes;    /* LCN */
  377. {
  378.     double    f;
  379.     int    expon;
  380.     unsigned long hiMant, loMant;
  381.     
  382.     expon = ((bytes[0] & 0x7F) << 8) | (bytes[1] & 0xFF);
  383.     hiMant    =    ((unsigned long)(bytes[2] & 0xFF) << 24)
  384.             |    ((unsigned long)(bytes[3] & 0xFF) << 16)
  385.             |    ((unsigned long)(bytes[4] & 0xFF) << 8)
  386.             |    ((unsigned long)(bytes[5] & 0xFF));
  387.     loMant    =    ((unsigned long)(bytes[6] & 0xFF) << 24)
  388.             |    ((unsigned long)(bytes[7] & 0xFF) << 16)
  389.             |    ((unsigned long)(bytes[8] & 0xFF) << 8)
  390.             |    ((unsigned long)(bytes[9] & 0xFF));
  391.  
  392.     if (expon == 0 && hiMant == 0 && loMant == 0) {
  393.         f = 0;
  394.     }
  395.     else {
  396.         if (expon == 0x7FFF) {    /* Infinity or NaN */
  397.             f = HUGE_VAL;
  398.         }
  399.         else {
  400.             expon -= 16383;
  401.             f  = ldexp(UnsignedToFloat(hiMant), expon-=31);
  402.             f += ldexp(UnsignedToFloat(loMant), expon-=32);
  403.         }
  404.     }
  405.  
  406.     if (bytes[0] & 0x80)
  407.         return -f;
  408.     else
  409.         return f;
  410. }
  411.  
  412.